home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 352_01 / veczsum.cpp < prev    next >
C/C++ Source or Header  |  1991-04-22  |  542b  |  24 lines

  1. //////// COMPLEX VECTORS
  2. //
  3. //        sum of elements in a complex vector.
  4. //         
  5. //
  6. #include <stdlib.h>
  7. #include <alloc.h>
  8. #include <string.h>
  9. #include "wtwg.h"
  10.  
  11. #include "dblib.h"
  12.  
  13. #include "vector.h"
  14.  
  15.     complex sum (CVector& vec,  int n1, int n2 )
  16.     // sum between point1 and point2 (friend function of CVector)
  17.     // if point2 == -1, sums to end of vec
  18.         {
  19.         float sreal= sum(vec.x, n1,n2);
  20.         float simag= sum(vec.y, n1,n2);
  21.         return ( complex(sreal,simag) );
  22.         }
  23. //--------------------- end VECZSUM.CPP ---------------------
  24.